/* ===============================
   GOOGLE FONT
================================ */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#333;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===============================
   SECTION TITLE
================================ */
.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#d4a017;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:38px;
    margin-top:10px;
    color:#111;
    font-weight:700;
}

/* ===============================
   BUTTON
================================ */
.btn{
    display:inline-block;
    padding:14px 35px;
    background:#d4a017;
    color:#fff;
    border-radius:5px;
    font-weight:600;
    transition:.4s;
}

.btn:hover{
    background:#111;
    transform:translateY(-5px);
}

.btn-outline{
    background:transparent;
    border:2px solid #fff;
    margin-left:15px;
}

.btn-outline:hover{
    background:#d4a017;
    border-color:#d4a017;
}

/* ===============================
   HEADER
================================ */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height: 80px;
    z-index: 99999;
    background:#000;
}

.header.sticky{
    background:#111;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    height:80px;
}

.logo a{
    text-decoration:none;
}

.logo h2{
    margin:0;
    font-size:28px;
    font-weight:800;
    color:#ffffff;
    letter-spacing:1px;
    line-height:1;
}

.logo h2 span{
    color:#f5a623;
}

.logo small{
    display:block;
    color:#d9d9d9;
    font-size:11px;
    letter-spacing:2px;
    margin-top:3px;
}

/* NAVIGATION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 600px;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:20;
    transition:.3s;
}

.slider-btn:hover{
    background:#ff6b00;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

.slider-dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:20;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#fff;
    opacity:.5;
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:#ff6b00;
    opacity:1;
}

/* ===============================
   DESKTOP NAVIGATION
================================ */

.navbar{
    display:flex;
    align-items:center;
}

.navbar ul{
    display:flex;
    align-items:center;
    gap:35px;
}

.logo{
    display: flex;
    align-items: centre;
}

.logo img{
    height: 45px;
    width: auto;
    object-fit: contain;
}

.navbar ul li{
    list-style:none;
}

.navbar ul li a{
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active{
    color:#d4a017;
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* ===============================
   ABOUT SECTION
================================ */
.about{
    padding:100px 0;
    background:#fff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    height:500px;
    object-fit:cover;
    border-radius:10px;
}

.about-content h3{
    font-size:32px;
    margin-bottom:20px;
    color:#111;
}

.about-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:15px;

}

.about-list{
    margin:25px 0;
}

.about-list div{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.about-list i{
    color:#d4a017;
    font-size:20px;
}

.about-list span{
    color:#333;
    font-weight:500;
}

/* ===============================
   STATISTICS SECTION
================================ */
.stats{
    background:#111;
    padding:70px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    text-align:center;
    color:#fff;
    padding:30px 20px;
}

.stat-box i{
    font-size:45px;
    color:#d4a017;
    margin-bottom:20px;
}

.stat-box h2{
    font-size:45px;
    margin-bottom:10px;
}

.stat-box p{
    color:#ddd;
    font-size:16px;
}

/* ===============================
   SERVICES SECTION
================================ */
.services{
    padding:100px 0;
    background:#f8f8f8;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:10px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    background:#111;
    color:#fff;
}

.service-card i{
    font-size:45px;
    color:#d4a017;
    margin-bottom:25px;
}

.service-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.service-card:hover p{
    color:#ddd;
}

.service-card a{
    color:#d4a017;
    font-weight:600;
}

/* ===============================
   INDUSTRIES SECTION
================================ */
.industries{
    padding:100px 0;
    background:#fff;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-card{
    padding:35px 25px;
    text-align:center;
    border:1px solid #eee;
    border-radius:10px;
    transition:.4s;
    background:#fff;
}

.industry-card:hover{
    background:#111;
    transform:translateY(-10px);
}

.industry-card i{
    font-size:45px;
    color:#d4a017;
    margin-bottom:20px;
}

.industry-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:#111;
}

.industry-card p{
    color:#666;
    line-height:1.7;
}

.industry-card:hover h3{
    color:#fff;
}

.industry-card:hover p{
    color:#ddd;
}

/* ===============================
   FLEET SECTION
================================ */
.fleet{
    padding:100px 0;
    background:#111;
    color:#fff;
}

.fleet-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.fleet .section-title{
    text-align:left;
}

.fleet .section-title h2{
    color:#fff;
}

.fleet-content p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:25px;
}

.fleet-content ul li{
    margin-bottom:15px;
    font-size:17px;
}

.fleet-content ul i{
    color:#d4a017;
    margin-right:12px;
}

.fleet-image img{
    height:450px;
    object-fit:cover;
    border-radius:10px;
}

/* ===============================
   QUALITY SECTION
================================ */
.quality{
    padding:100px 0;
    background:#f8f8f8;
}

.quality-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.quality-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:10px;
    transition:.4s;
}

.quality-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.quality-box i{
    font-size:45px;
    color:#d4a017;
    margin-bottom:20px;
}

.quality-box h3{

    font-size:21px;
    margin-bottom:15px;
    color:#111;
}

.quality-box p{
    color:#666;
   line-height:1.7;
}

/* ===============================
   NEWS SECTION
================================ */
.news{
    padding:100px 0;
    background:#fff;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.news-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.news-card:hover{
    transform:translateY(-10px);
}

.news-card img{
    height:250px;
    object-fit:cover;
}

.news-content{
    padding:25px;
}

.news-content span{
    color:#d4a017;
    font-size:14px;
    font-weight:600;
}

.news-content h3{
    font-size:22px;
    margin:15px 0;
    color:#111;
}

.news-content p{
    color:#666;
    line-height:1.7;
}

.news-content a{
    display:inline-block;
    margin-top:15px;
    color:#d4a017;
    font-weight:600;
}

/* ===============================
   TESTIMONIAL SECTION
================================ */
.testimonials{
    padding:100px 0;
    background:#111;
    color:#fff;
}

.testimonials .section-title h2{
    color:#fff;
}

.testimonial-slider{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.testimonial{
    display:none;
    padding:40px;
}

.testimonial.active{
    display:block;
}

.testimonial p{
    font-size:22px;
    line-height:1.8;
    font-style:italic;
    color:#ddd;
}

.testimonial h4{
    margin-top:25px;
    color:#d4a017;

}

/* ===============================
   CONTACT SECTION
================================ */
.contact{
    padding:100px 0;
    background:#f8f8f8;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info h3{
    font-size:28px;
    margin-bottom:25px;
}

.contact-info div{
    display:flex;
    gap:15px;
    align-items:center;
    margin-bottom:20px;
}

.contact-info i{
    color:#d4a017;
    font-size:22px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    outline:none;
    font-size:15px;
}

.contact-form textarea{
    resize:none;
}

.map{
    margin-top:50px;
}

.map iframe{
    width:100%;
    height:350px;
    border:0;
}

/* ===============================
   FOOTER
================================ */
.footer{
    background:#111;
    color:#fff;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-box h3{
    color:#d4a017;
    margin-bottom:20px;
}

.footer-box p{
    color:#ccc;
    line-height:1.7;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul a{
    color:#ddd;
}

.social-icons{
    margin-top:20px;
}

.social-icons a{
    display:inline-flex;
    width:40px;
    height:40px;
    justify-content:center;
    align-items:center;
    background:#222;
    margin-right:10px;
    border-radius:50%;
    transition:.3s;
}

.social-icons a:hover{
    background:#d4a017;
}

.newsletter{
    display:flex;
}

.newsletter input{
    padding:12px;
    border:none;
    outline:none;
    width:70%;
}

.newsletter button{
    background:#d4a017;
    border:none;
    padding:12px 18px;
    color:#fff;
    cursor:pointer;
}

.copyright{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #333;
    color:#aaa;
}

/* ===============================
   BACK TO TOP
================================ */
#backToTop{
    position:fixed;
    right:30px;
    bottom:30px;
    width:45px;
    height:45px;
    background:#d4a017;
    color:#fff;
    border:none;
    border-radius:50%;
    cursor:pointer;
    display:none;
    z-index:999;
}

#backToTop.show{
    display:block;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media(max-width:1100px){
.container{
    width:92%;
}

.hero-content h1{
    font-size:45px;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.quality-grid{
    grid-template-columns:repeat(2,1fr);
}
}

/* ===============================
   TABLET DEVICES
================================ */

@media(max-width:900px){

/* MOBILE NAVIGATION */
.menu-btn{
    display:block;
}

.navbar{
    position:absolute;
    top:90px;
    left:-100%;
    width:100%;
    background:#111;
    transition:.4s;
}

.navbar.active{
    left:0;
}

.navbar ul{
    flex-direction:column;
    padding:30px;
    gap:25px;
}

/* ABOUT */
.about-wrapper{
    grid-template-columns:1fr;
}

.about-image img{
    height:400px;
}

/* FLEET */
.fleet-wrapper{
    grid-template-columns:1fr;
}

.fleet-image{
    order:-1;
}

/* CONTACT */
.contact-wrapper{
    grid-template-columns:1fr;
}

/* FOOTER */
.footer-grid{
    grid-template-columns:1fr 1fr;

}
}

/* ===============================
   MOBILE DEVICES
================================ */
@media(max-width:600px){

.section-title h2{
    font-size:28px;
}

.header .logo img{
    width:120px;
}

.hero{
    height:90vh;
}

.hero-content h1{
    font-size:30px;
}

.hero-content p{
    font-size:15px;
}

.hero-buttons{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.btn-outline{
    margin-left:0;
}

/* STATISTICS */
.stats-grid{
    grid-template-columns:1fr;
}

.stat-box h2{
    font-size:38px;
}

/* SERVICES */
.service-grid{
    grid-template-columns:1fr;
}

/* INDUSTRIES */
.industry-grid{
    grid-template-columns:1fr;
}

/* QUALITY */
.quality-grid{
    grid-template-columns:1fr;
}

/* NEWS */
.news-grid{
    grid-template-columns:1fr;
}

/* TESTIMONIAL */
.testimonial p{
    font-size:17px;
}

/* FOOTER */
.footer-grid{
    grid-template-columns:1fr;
}

.newsletter{
    flex-direction:column;
}

.newsletter input{
    width:100%;
}

.newsletter button{
    margin-top:10px;
}

#backToTop{
    right:15px;
    bottom:15px;
}
}

/* ===============================
   TRACKING SECTION
================================ */
.tracking{
    padding:60px 0;
    background:#d4a017;
}

.tracking-box{
    background:#111;
    padding:40px;
    border-radius:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.tracking-content{
    color:#fff;
}

.tracking-content i{
    font-size:45px;
    color:#d4a017;
}

.tracking-content h2{
    font-size:32px;
    margin:15px 0;
}

.tracking-content p{
    color:#ddd;
}

.tracking-form{
    display:flex;
    gap:15px;
}

.tracking-form input{
    width:300px;
    padding:15px;
    border:none;
    outline:none;
}

@media(max-width:800px){
.tracking-box{
    flex-direction:column;
}

.tracking-form{
    width:100%;
    flex-direction:column;
}

.tracking-form input{
    width:100%;
}
}